home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / usr / share / aclocal-1.8 / maintainer.m4 < prev    next >
Encoding:
M4 Source File  |  2005-10-16  |  1.4 KB  |  40 lines

  1. # Add --enable-maintainer-mode option to configure.
  2. # From Jim Meyering
  3.  
  4. # Copyright (C) 1996, 1998, 2000, 2001, 2002, 2003, 2004
  5. # Free Software Foundation, Inc.
  6.  
  7. # This program is free software; you can redistribute it and/or modify
  8. # it under the terms of the GNU General Public License as published by
  9. # the Free Software Foundation; either version 2, or (at your option)
  10. # any later version.
  11.  
  12. # This program is distributed in the hope that it will be useful,
  13. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  15. # GNU General Public License for more details.
  16.  
  17. # You should have received a copy of the GNU General Public License
  18. # along with this program; if not, write to the Free Software
  19. # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
  20. # 02111-1307, USA.
  21.  
  22. # serial 3
  23.  
  24. AC_DEFUN([AM_MAINTAINER_MODE],
  25. [AC_MSG_CHECKING([whether to enable maintainer-specific portions of Makefiles])
  26.   dnl maintainer-mode is disabled by default
  27.   AC_ARG_ENABLE(maintainer-mode,
  28. [  --enable-maintainer-mode  enable make rules and dependencies not useful
  29.               (and sometimes confusing) to the casual installer],
  30.       USE_MAINTAINER_MODE=$enableval,
  31.       USE_MAINTAINER_MODE=no)
  32.   AC_MSG_RESULT([$USE_MAINTAINER_MODE])
  33.   AM_CONDITIONAL(MAINTAINER_MODE, [test $USE_MAINTAINER_MODE = yes])
  34.   MAINT=$MAINTAINER_MODE_TRUE
  35.   AC_SUBST(MAINT)dnl
  36. ]
  37. )
  38.  
  39. AU_DEFUN([jm_MAINTAINER_MODE], [AM_MAINTAINER_MODE])
  40.